home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / System / Directory source / main.c < prev    next >
C/C++ Source or Header  |  1988-10-27  |  170b  |  19 lines

  1. /*    MAIN.C
  2.  *
  3.  *    The main entry point for all this
  4.  */
  5.  
  6.  
  7. #include <stdio.h>
  8.  
  9.  
  10. main()
  11. {
  12.     int mode;
  13.  
  14.     InitApp();
  15.     UnloadSeg(InitApp);
  16.     while (!DoEvent());
  17.     ExitToShell();
  18. }
  19.